home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / acpi / start.d / 90-hdparm.sh < prev   
Linux/UNIX/POSIX Shell Script  |  2008-10-14  |  1KB  |  40 lines

  1. #! /bin/sh
  2. #
  3. # This script adjusts hard drive APM settings using hdparm. The hardware
  4. # defaults (usually hdparm -B 128) cause excessive head load/unload cycles
  5. # on many modern hard drives. We therefore set hdparm -B 254 while on AC
  6. # power. On battery we set hdparm -B 128, because the head parking is
  7. # very useful for shock protection.
  8. #
  9.  
  10. . /usr/share/acpi-support/power-funcs
  11.  
  12. DO_HDPARM=y
  13. if [ -e /usr/sbin/laptop_mode ] ; then 
  14.   LMT_CONTROL_HD_POWERMGMT=$(. /etc/laptop-mode/laptop-mode.conf && echo "$CONTROL_HD_POWERMGMT")
  15.   if [ "$LMT_CONTROL_HD_POWERMGMT" != 0 ] ; then
  16.     # Laptop mode controls hdparm -B settings, we don't.
  17.     DO_HDPARM=n
  18.   fi
  19. fi
  20.  
  21. if [ $DO_HDPARM = y ] ; then
  22.   # Get the power state into STATE
  23.   getState;
  24.   
  25.   for dev in /dev/sd? /dev/hd? ; do
  26.     if [ -b $dev ] ; then
  27.       # Check for APM support; discard errors since not all drives
  28.       # support HDIO_GET_IDENTITY (-i).    
  29.       if hdparm -i $dev 2> /dev/null | grep -q 'AdvancedPM=yes' ; then
  30.     if [ $STATE = "BATTERY" ] ; then
  31.       hdparm -B 128 $dev
  32.     else
  33.       hdparm -B 254 $dev
  34.     fi
  35.       fi
  36.     fi
  37.   done
  38. fi
  39.  
  40.